type crypto/internal/fips140/nistec.p256Element

40 uses

	crypto/internal/fips140/nistec (current package)
		p256_asm.go#L27: type p256Element [4]uint64
		p256_asm.go#L30: var p256One = p256Element{0x0000000000000001, 0xffffffff00000000,
		p256_asm.go#L33: var p256Zero = p256Element{}
		p256_asm.go#L36: var p256P = p256Element{0xffffffffffffffff, 0x00000000ffffffff,
		p256_asm.go#L44: 	x, y, z p256Element
		p256_asm.go#L56: 	p.x = p256Element{0x79e730d418a9143c, 0x75ba95fc5fedb601,
		p256_asm.go#L58: 	p.y = p256Element{0xddf25357ce95560a, 0x8b4ab8e4ba19e45c,
		p256_asm.go#L82: 	rr := p256Element{0x0000000000000003, 0xfffffffbffffffff,
		p256_asm.go#L123: 		yy := new(p256Element)
		p256_asm.go#L137: func p256Polynomial(y2, x *p256Element) *p256Element {
		p256_asm.go#L138: 	x3 := new(p256Element)
		p256_asm.go#L142: 	threeX := new(p256Element)
		p256_asm.go#L147: 	p256B := &p256Element{0xd89cdf6229c4bddf, 0xacf005cd78843090,
		p256_asm.go#L157: func p256CheckOnCurve(x, y *p256Element) error {
		p256_asm.go#L159: 	rhs := p256Polynomial(new(p256Element), x)
		p256_asm.go#L160: 	lhs := new(p256Element)
		p256_asm.go#L171: func p256LessThanP(x *p256Element) int {
		p256_asm.go#L180: func p256BigToLittle(l *p256Element, b *[32]byte) {
		p256_asm.go#L191: func p256LittleToBig(b *[32]byte, l *p256Element) {
		p256_asm.go#L203: func p256Add(res, x, y *p256Element) {
		p256_asm.go#L231: func p256Sqrt(e, x *p256Element) (isSquare bool) {
		p256_asm.go#L232: 	t0, t1 := new(p256Element), new(p256Element)
		p256_asm.go#L278: func p256Mul(res, in1, in2 *p256Element)
		p256_asm.go#L283: func p256Sqr(res, in *p256Element, n int)
		p256_asm.go#L289: func p256FromMont(res, in *p256Element)
		p256_asm.go#L294: func p256NegCond(val *p256Element, cond int)
		p256_asm.go#L315: 	x, y p256Element
		p256_asm.go#L458: func p256Equal(a, b *p256Element) int {
		p256_asm.go#L487: 	x, y := new(p256Element), new(p256Element)
		p256_asm.go#L499: func (p *P256Point) affineFromMont(x, y *p256Element) {
		p256_asm.go#L525: 	x := new(p256Element)
		p256_asm.go#L550: 	x, y := new(p256Element), new(p256Element)
		p256_asm.go#L566: func p256Inverse(out, in *p256Element) {
		p256_asm.go#L589: 	var z = new(p256Element)
		p256_asm.go#L590: 	var t0 = new(p256Element)
		p256_asm.go#L591: 	var t1 = new(p256Element)